home *** CD-ROM | disk | FTP | other *** search
- /* generates catalogs from the 'Amiga Plus CD No.1' */
-
- /* --------------------- standard startup ----------------------- */
-
- OPTIONS RESULTS
-
- if( ADDRESS() ~= "IDESK_REXXPORT" ) then
- ADDRESS IDESK_REXXPORT
-
- /* -------------------------------------------------------------- */
-
- IDREQUEST "Abort|Continue" '"This Script requires the Amiga Plus CD No.1."'
- if (RESULT = 1) then exit
-
- IDGETPATH '"Where to store the catalogs?"'
- if (RC > 0) then exit
- catdir = RESULT
-
- if (right(catdir, 1) ~= ':') then
- catdir = catdir || '/'
-
- GENCAT '"'||catdir||Kolodziejczik.cat||'"' "AMIGA_PLUS:Bilder/Kolodziejczik" "#?.GIF"
- GENCAT '"'||catdir||Lesergalerie_GIF.cat||'"' "AMIGA_PLUS:Bilder/Lesergalerie/GIF-Format" "#?.GIF"
- GENCAT '"'||catdir||Lesergalerie_JPG.cat||'"' "AMIGA_PLUS:Bilder/Lesergalerie/JPEG-Format" "#?.JPEG"
- GENCAT '"'||catdir||Lesergalerie_TGA.cat||'"' "AMIGA_PLUS:Bilder/Lesergalerie/TARGA-Format" "#?.TGA"
- GENCAT '"'||catdir||SeaQuest_GIF.cat||'"' "AMIGA_PLUS:Bilder/SeaQuest/GIF" "#?.GIF"
- GENCAT '"'||catdir||SeaQuest_JPG.cat||'"' "AMIGA_PLUS:Bilder/SeaQuest/JPEG" "#?.JPG"
- GENCAT '"'||catdir||SeaQuest_TGA_G.cat||'"' "AMIGA_PLUS:Bilder/SeaQuest/Targa_Gross" "#?.TGA"
- GENCAT '"'||catdir||SeaQuest_TGA_K.cat||'"' "AMIGA_PLUS:Bilder/SeaQuest/Targa_Klein" "#?.TGA"
- GENCAT '"'||catdir||StarTrek.cat||'"' "AMIGA_PLUS:Bilder/StarTrek" "#?.TGA"
-
- IDREQUEST OK '"Catalogs have been stored to:'||'0A'x||catdir'"'
-